cd />> Place the catalog backup on the share via AFP, SMB, FTP, or Direct attached storage

>> ssh into the unit (where archiveXX is the name of your unit)  ( http://www.cache-a.com/ftpcommon/CATechBrief-CommandLine.pdf )

ssh root@archiveXX.local

>> Stop all services

service httpd stop

/etc/init.d/tapemgr stop

service mysqld stop

>> Navigate to the share directory on the sharesermy

cd /media/vtape/

>> Copy the catalog backup to the root level. This 

mv *catalog name*.tgz /media/

>> navigate to the root partition  /

cd /

>> Expand the catalog (the name of you backup might be different, if you start typing catalog_ then press tab, it should autocomplete the rest for you.  You can also type the command ll (lowercase LL)to see what's in that directory)

tar xvf /media/*catalog name* 

>> Check for error in the catalog

myisamchk -r /media/catalog/database/mysql/catalog/*.MYI

>> Enable the services back in reverse order

service mysqld start

/etc/init.d/tapemgr start

service httpd start